home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PCGUIA 127
/
PC Guia 127.iso
/
Software
/
Utils
/
GParted Live CD
/
Bin
/
gparted-livecd-0.2.2.iso
/
usr_sqfs
/
bin
/
diskcopy
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2002-02-21
|
295 b
|
10 lines
#!/bin/sh
echo -n "Insert source disk in first floppy drive, then hit enter"
read ans;
MCOOKIE=`mcookie`
dd if=/dev/fd0 of=/tmp/dcopy.$MCOOKIE
echo -n "Remove source disk and insert destination disk, then hit enter"
read ans;
dd of=/dev/fd0 if=/tmp/dcopy.$MCOOKIE
/bin/rm -f /tmp/dcopy.$MCOOKIE